From: Gerd Moellmann Date: Fri, 11 May 2001 10:53:56 +0000 (+0000) Subject: (compile-files): Redirect output of chmod to X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~40360 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=73234e25d6c8d2a65ab21d7051a8fbdd41a7117a;p=emacs.git (compile-files): Redirect output of chmod to /dev/null. --- diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 933673d94be..703d5c7a28b 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -196,7 +196,7 @@ $(DONTCOMPILE:.el=.elc): # load's in the files being compiled find the right files. compile-files: subdirs.el doit - find $(lisp) -name "*.elc" -print | xargs chmod +w; \ + find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \ wd=$(lisp); $(setwins); \ elpat=`echo $$wins | tr ' ' '\012\012' | \ sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \